3516dcb9eaa1dab0a3d30c3fb16f255e7c86dae4,app/src/main/java/com/felkertech/cumulustv/utils/ActivityUtils.java,ActivityUtils,browsePlugins,#Activity#,501
Before Change
activity.startActivity(intent);
}
})
.positiveText(R.string.download_more_plugins)
.onPositive(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) {
Intent i = new Intent(Intent.ACTION_VIEW);
After Change
activity.startActivity(intent);
}
})
.setPositiveButton(R.string.download_more_plugins, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int wh) {
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(
"http://play.google.com/store/search?q=cumulustv&c=apps"));
activity.startActivity(i);
}
})
.show();
}
/* ACTIVITY CLONES */